home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- timer += 1;
- rot = this._rotation + 90;
- this._x += Math.sin(rot * 3.141592653589793 / 180) * speed;
- this._y -= Math.cos(rot * 3.141592653589793 / 180) * speed;
- if(_root.yuka.jimen.hitTest(_X,_Y,true) || timer > 10)
- {
- this.removeMovieClip();
- }
- if(this.hitTest(_root.pandam.hit))
- {
- speed = 0;
- _root.pandam.myColor.setRGB(16777062);
- _root.pandam.hit.gotoAndPlay(2);
- _root.pandam.life -= 8;
- _root.lifeber._xscale -= 8;
- this.removeMovieClip();
- }
- if(Key.isDown(65))
- {
- if(_root.yuka._x < 230)
- {
- this._x += _root.ido;
- }
- }
- if(Key.isDown(68))
- {
- if(_root.yuka._x > -2830)
- {
- this._x -= _root.ido;
- }
- }
- }
-